module Base
{
  
    item CannedPeas
    {
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Canned Peas,
        Icon	=	CannedPeas,
        Carbohydrates = 52.5,
        Proteins = 14,
        Lipids = 0,
        Calories = 280,
        Packaged = TRUE,
        StaticModel = CanClosed_Peas,
        CannedFood = TRUE,
	ToolTip = Can of green peas rich in vitamins and selenium,
    }
    item CannedPeasOpen
    {
        Weight	=	0.7,
        Type	=	Food,
        DisplayName	=	Opened Canned Peas,
        Icon	=	CannedPeasOpen,
        HungerChange 		=		-15,
        EvolvedRecipe = Soup:15;Stew:15;Stir fry Griddle Pan:15;Stir fry:15;Roasted Vegetables:15;RicePot:15;RicePan:15,
        DaysFresh			=	2,
        DaysTotallyRotten	=	4,
        ThirstChange	=	-3,
        Carbohydrates = 52.5,
        Proteins = 14,
        Lipids = 0,
        Calories = 280,
        Packaged = TRUE,
        FoodType    = Vegetables,
        EvolvedRecipeName = Canned Peas,
        ReplaceOnUse    =   TinCanEmpty,
        StaticModel = CanOpen_Peas,
        EatType = can,
        CannedFood = TRUE,
	ToolTip = Can of green peas rich in vitamins and selenium,
    }
model CanOpen_Peas
	{
		mesh = CanClosed,
		texture = CanOpen_Peas,
	}
model CanClosed_Peas
	{
		mesh = CanClosed,
		texture = CanClosed_Peas,
	}

}
